home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F46134_identity.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-07-01  |  300 b   |  12 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:output method="xml"/>
  5.   <xsl:template match="/ | @* | node()">
  6.     <xsl:copy>
  7.       <xsl:apply-templates  select="@* | node()"/>
  8.     </xsl:copy>
  9.   </xsl:template>
  10. </xsl:stylesheet>
  11.  
  12.